home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 73.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  436b  |  24 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     struct    flags {
  11.         int    status;
  12.         int    current;
  13.         int    prev;
  14.     };
  15.     static    struct flags runtime[] = {
  16.         0,1,2,
  17.         3,5,6,
  18.         7,8,9,
  19.         10,11,12
  20.     };
  21.  
  22.     printf("%d %d\n",runtime[0].status, runtime[1].status);
  23. }
  24.